home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 1997 May / PC Plus Super CD Issue 127 (May 1997).iso / delphi2 / delphite.exe / data.z / GRAPHEX.DPR < prev    next >
Encoding:
Text File  |  1996-08-12  |  258 b   |  15 lines

  1. program GraphEx;
  2.  
  3. uses
  4.   Forms,
  5.   GraphWin in 'GraphWin.pas' {Form1},
  6.   BMPDlg in 'BMPDlg.pas' {NewBMPForm};
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   Application.CreateForm(TForm1, Form1);
  12.   Application.CreateForm(TNewBMPForm, NewBMPForm);
  13.   Application.Run;
  14. end.
  15.